home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1997 May / EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso / earcd / comm / cnet / edp2days.lha / EDPtwodays.doc < prev    next >
Text File  |  1997-02-18  |  4KB  |  100 lines

  1. EDPTwoDays.Rexx version 2.0 by Edward Peyton
  2.  
  3. This program will log and SHOW ALL callers to your bbs on a given day,
  4. ALL callers to the bbs for YESTERDAY, and, if you enable it, a GUESS as
  5. to the callers you will have tomorrow. <G> I guess it should be called
  6. EDPThreedays.rexx. The idea for the Tommorrow command was not mine, BTW,
  7. I just added it at a rather insane users' suggestion. I hope that doesn't
  8. make me insane as well. :)
  9.  
  10. NEW to version 2.0!!! :
  11.  
  12. Included is the ability to log all NETWORK calls, IF you use Trapdoor
  13. as your network frontend! See The file EDPTODNET.Rexx for proper 
  14. installation of THAT rexx program. It interfaces with the today
  15. automatically, once installed corectly. :)
  16.  
  17. ALSO, now you will have a COMPLETE log of ALL callers, for those with Maint
  18. access to view. If you have some people or ports that you do not wish to log
  19. in the Today, maint users will STILL see ALL logons, regardless. To take a look
  20. at the difference anytime, just UN 'ID' yourself, and you will see what the
  21. regular user sees. (Also to test this, in case you don't believe me :)
  22.  
  23. ALSO: Included is a DOS REXX script for viewing the last few callers in DOS,
  24. without logging on at all. This (by Default) will show you the FULL last
  25. list of callers. Be sure to install somewhere the MCI stripper program
  26. by Tinic Urou, 'MASTRIPPER', (INcluded in this archive), as this rexx script
  27. uses that program to strip all the MCI before it shows it to you in a shell.
  28. Otherwise it would look kinda kludgy. :) Just define the path for the program.
  29. Remember that this program 'EDPTODSHOW.REXX' is a DOS rexx program, not a CNET
  30. rexx file!!! See that file for its usage and installation.
  31.  
  32. Anyway, to install:
  33.  
  34. 1)Look at, and change the settings below, if neccesary.
  35.  
  36. 2) Edit your bbstext, and add this program somewhere in the logon sequence,
  37.    so it will actually LOG the users as they log on.
  38.  
  39. {#0Pfiles:rexx/edptwodays.rexx}
  40. I would suggest somewhere in your sys.welcome, or line # 62 of your
  41. bbstext, where it says @cleared for logon.
  42.  
  43. 4)
  44. Add the following menu items to your BBSMENU, Available everywhere:
  45.  
  46. TODay      {#0Pfiles:rexx/edptwodays.rexx TODAY}
  47. YESTerday  {#0Pfiles:rexx/edptwodays.rexx YESTERDAY}
  48. TOMorrow   {#0Pfiles:rexx/edptwodays.rexx TOMORROW}
  49.  
  50. Use Control Q's of course, and edit the path to reflect where YOU have
  51. the program stored. I usually copy things that run at every logon or off
  52. to RAM on bootup, then run them from there. Seems to speed things up a bit.
  53.  
  54. 5) ***MOST IMPORTANT!!!!****
  55. You MUST define an EVENT to run at midnight, or very close to it, so that
  56. the proper files can be changed, renamed, added, etc. Otherwise, the TODAY
  57. file will just go on forever, and you don't want that. hehe
  58.  
  59. Here's what to run:
  60.  
  61. RUNArexx
  62. Args: Pfiles:rexx/edptwodays.rexx CHANGEDAY
  63. PORT 0
  64. Immediate--System idle or not (OR Immediate--Force system idle)
  65. Time=0000 (or 1159)
  66. Valid=5
  67. Interval=0
  68. Iterate=1
  69.  
  70. However you run it is not important, what IS important is THAT you run it
  71. with the CHANGEDAY argument, so that you will have each days' data files.
  72.  
  73.  
  74. /* -----Sysop definable settings----- */
  75.  
  76.  
  77. ls=0                             /*0=Don't LOG sysop, 1=LOG sysop*/
  78. log='Sysdata:edptoday.ctxt'      /*Location and name of Log file for TODAY*/
  79. log2='sysdata:edpyesterday.ctxt' /*Location and name of Log file for YESTERDAY*/
  80. log3='sysdata:edptomorrow.ctxt'  /*Location and name of log file for tommorow */
  81. loga='sysdata:edpalltoday.ctxt'  /*Logs All the excluded callers for sysop viewing! */
  82. loga2='sysdata:edpallyest.ctxt'  /* Yesterdays ALL logged callers. */
  83. list='Organization'              /* Choose Organization to list organizations string, or Access Group to list Access group name. */
  84. lista='Access Group'             /* Chosee Organization to list organizations in the log ALL callers, or Access Group to list access group. */
  85. bbs='Atlantis'                   /*How you want your BBS name to read   */
  86. pt=4                             /*Port to NOT log; D to disable   */
  87. group=25                         /* Access group to not log  */
  88. grou=2                           /* another access group to NOT log. */
  89.  
  90. Edward D. Peyton
  91. Atlantis BBS: (904) 479-3133 | 479-4080
  92. WebSite: http://www.pen.net/~atlantis
  93. email : edp@pen.net  Edward Peyton@1:3612/369.0
  94. snailmail:
  95. 5100 N 9th Ave F-601
  96. Pensacola, FL 32504
  97.  
  98. DISCLAIMER:
  99. Use it at your own risk, and all that kind of stuff...etc...etc..:)
  100.